.admission-section {
  display: flex;
  align-items: flex-start;
}

.admission-left {
  position: sticky;
  top: 80px;
  /* Adjust so it sits below navbar */
  height: 100vh;
  /* Full height scroll effect */
  overflow: hidden;
}

.admission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* clean crop */
  object-position: center;
  /* center focus */
}

.admission-right {
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 50px;
}

/*mobile view*/
@media (max-width: 768px) {
  .admission-left {
    position: relative;
    height: auto;
  }

  .admission-right {
    padding-left: 0;
  }
}

.tc-blue {
  color: rgb(0, 88, 129)
}

.vds_img {
  height: 70vh;
  width: 100%;
}

@media (max-width: 767px) {
  .admission-img {
    max-height: 250px;
    /* Mobile max height */
  }

  .admission-right {
    padding: 1rem;
  }

  .admission-right p {
    font-size: 0.95rem;
    /* Slightly smaller for mobile */
    line-height: 1.5;
  }
}